home *** CD-ROM | disk | FTP | other *** search
/ Ultra Pack / UltraComputing Partner Applications.iso / SunLabs / tclTK / src / tk4.0 / default.h < prev    next >
C/C++ Source or Header  |  1995-06-29  |  14KB  |  431 lines

  1. /*
  2.  * default.h --
  3.  *
  4.  *    This file defines the defaults for all options for all of
  5.  *    the Tk widgets.
  6.  *
  7.  * Copyright (c) 1991-1994 The Regents of the University of California.
  8.  * Copyright (c) 1994-1995 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * @(#) default.h 1.80 95/06/29 13:59:52
  14.  */
  15.  
  16. #ifndef _DEFAULT
  17. #define _DEFAULT
  18.  
  19. /*
  20.  * The definitions below provide symbolic names for the default colors.
  21.  * NORMAL_BG -        Normal background color.
  22.  * ACTIVE_BG -        Background color when widget is active.
  23.  * SELECT_BG -        Background color for selected text.
  24.  * TROUGH -        Background color for troughs in scales and scrollbars.
  25.  * INDICATOR -        Color for indicator when button is selected.
  26.  * DISABLED -        Foreground color when widget is disabled.
  27.  */
  28.  
  29. #define BLACK        "Black"
  30. #define WHITE        "White"
  31.  
  32. #define NORMAL_BG    "#d9d9d9"
  33. #define ACTIVE_BG    "#ececec"
  34. #define SELECT_BG    "#c3c3c3"
  35. #define TROUGH        "#c3c3c3"
  36. #define INDICATOR    "#b03060"
  37. #define DISABLED    "#a3a3a3"
  38.  
  39. /*
  40.  * Defaults for labels, buttons, checkbuttons, and radiobuttons:
  41.  */
  42.  
  43. #define DEF_BUTTON_ANCHOR        "center"
  44. #define DEF_BUTTON_ACTIVE_BG_COLOR    ACTIVE_BG
  45. #define DEF_BUTTON_ACTIVE_BG_MONO    BLACK
  46. #define DEF_BUTTON_ACTIVE_FG_COLOR    BLACK
  47. #define DEF_BUTTON_ACTIVE_FG_MONO    WHITE
  48. #define DEF_BUTTON_BG_COLOR        NORMAL_BG
  49. #define DEF_BUTTON_BG_MONO        WHITE
  50. #define DEF_BUTTON_BITMAP        ""
  51. #define DEF_BUTTON_BORDER_WIDTH        "2"
  52. #define DEF_BUTTON_CURSOR        ""
  53. #define DEF_BUTTON_COMMAND        ""
  54. #define DEF_BUTTON_DISABLED_FG_COLOR    DISABLED
  55. #define DEF_BUTTON_DISABLED_FG_MONO    ""
  56. #define DEF_BUTTON_FG            BLACK
  57. #define DEF_BUTTON_FONT            "-Adobe-Helvetica-Bold-R-Normal--*-120-*-*-*-*-*-*"
  58. #define DEF_BUTTON_HEIGHT        "0"
  59. #define DEF_BUTTON_HIGHLIGHT_BG        NORMAL_BG
  60. #define DEF_BUTTON_HIGHLIGHT        BLACK
  61. #define DEF_LABEL_HIGHLIGHT_WIDTH    "0"
  62. #define DEF_BUTTON_HIGHLIGHT_WIDTH    "2"
  63. #define DEF_BUTTON_IMAGE        (char *) NULL
  64. #define DEF_BUTTON_INDICATOR        "1"
  65. #define DEF_BUTTON_JUSTIFY        "center"
  66. #define DEF_BUTTON_OFF_VALUE        "0"
  67. #define DEF_BUTTON_ON_VALUE        "1"
  68. #define DEF_BUTTON_PADX            "3m"
  69. #define DEF_LABCHKRAD_PADX        "1"
  70. #define DEF_BUTTON_PADY            "1m"
  71. #define DEF_LABCHKRAD_PADY        "1"
  72. #define DEF_BUTTON_RELIEF        "raised"
  73. #define DEF_LABCHKRAD_RELIEF        "flat"
  74. #define DEF_BUTTON_SELECT_COLOR        INDICATOR
  75. #define DEF_BUTTON_SELECT_MONO        BLACK
  76. #define DEF_BUTTON_SELECT_IMAGE        (char *) NULL
  77. #define DEF_BUTTON_STATE        "normal"
  78. #define DEF_LABEL_TAKE_FOCUS        "0"
  79. #define DEF_BUTTON_TAKE_FOCUS        (char *) NULL
  80. #define DEF_BUTTON_TEXT            ""
  81. #define DEF_BUTTON_TEXT_VARIABLE    ""
  82. #define DEF_BUTTON_UNDERLINE        "-1"
  83. #define DEF_BUTTON_VALUE        ""
  84. #define DEF_BUTTON_WIDTH        "0"
  85. #define DEF_BUTTON_WRAP_LENGTH        "0"
  86. #define DEF_RADIOBUTTON_VARIABLE    "selectedButton"
  87. #define DEF_CHECKBUTTON_VARIABLE    ""
  88.  
  89. /*
  90.  * Defaults for canvases:
  91.  */
  92.  
  93. #define DEF_CANVAS_BG_COLOR        NORMAL_BG
  94. #define DEF_CANVAS_BG_MONO        WHITE
  95. #define DEF_CANVAS_BORDER_WIDTH        "0"
  96. #define DEF_CANVAS_CLOSE_ENOUGH        "1"
  97. #define DEF_CANVAS_CONFINE        "1"
  98. #define DEF_CANVAS_CURSOR        ""
  99. #define DEF_CANVAS_HEIGHT        "7c"
  100. #define DEF_CANVAS_HIGHLIGHT_BG        NORMAL_BG
  101. #define DEF_CANVAS_HIGHLIGHT        BLACK
  102. #define DEF_CANVAS_HIGHLIGHT_WIDTH    "2"
  103. #define DEF_CANVAS_INSERT_BG        BLACK
  104. #define DEF_CANVAS_INSERT_BD_COLOR    "0"
  105. #define DEF_CANVAS_INSERT_BD_MONO    "0"
  106. #define DEF_CANVAS_INSERT_OFF_TIME    "300"
  107. #define DEF_CANVAS_INSERT_ON_TIME    "600"
  108. #define DEF_CANVAS_INSERT_WIDTH        "2"
  109. #define DEF_CANVAS_RELIEF        "flat"
  110. #define DEF_CANVAS_SCROLL_REGION    ""
  111. #define DEF_CANVAS_SELECT_COLOR        SELECT_BG
  112. #define DEF_CANVAS_SELECT_MONO        BLACK
  113. #define DEF_CANVAS_SELECT_BD_COLOR    "1"
  114. #define DEF_CANVAS_SELECT_BD_MONO    "0"
  115. #define DEF_CANVAS_SELECT_FG_COLOR    BLACK
  116. #define DEF_CANVAS_SELECT_FG_MONO    WHITE
  117. #define DEF_CANVAS_TAKE_FOCUS        (char *) NULL
  118. #define DEF_CANVAS_WIDTH        "10c"
  119. #define DEF_CANVAS_X_SCROLL_CMD        ""
  120. #define DEF_CANVAS_X_SCROLL_INCREMENT    "0"
  121. #define DEF_CANVAS_Y_SCROLL_CMD        ""
  122. #define DEF_CANVAS_Y_SCROLL_INCREMENT    "0"
  123.  
  124. /*
  125.  * Defaults for entries:
  126.  */
  127.  
  128. #define DEF_ENTRY_BG_COLOR        NORMAL_BG
  129. #define DEF_ENTRY_BG_MONO        WHITE
  130. #define DEF_ENTRY_BORDER_WIDTH        "2"
  131. #define DEF_ENTRY_CURSOR        "xterm"
  132. #define DEF_ENTRY_EXPORT_SELECTION    "1"
  133. #define DEF_ENTRY_FONT            "-Adobe-Helvetica-Medium-R-Normal--*-120-*-*-*-*-*-*"
  134. #define DEF_ENTRY_FG            BLACK
  135. #define DEF_ENTRY_HIGHLIGHT_BG        NORMAL_BG
  136. #define DEF_ENTRY_HIGHLIGHT        BLACK
  137. #define DEF_ENTRY_HIGHLIGHT_WIDTH    "2"
  138. #define DEF_ENTRY_INSERT_BG        BLACK
  139. #define DEF_ENTRY_INSERT_BD_COLOR    "0"
  140. #define DEF_ENTRY_INSERT_BD_MONO    "0"
  141. #define DEF_ENTRY_INSERT_OFF_TIME    "300"
  142. #define DEF_ENTRY_INSERT_ON_TIME    "600"
  143. #define DEF_ENTRY_INSERT_WIDTH        "2"
  144. #define DEF_ENTRY_JUSTIFY        "left"
  145. #define DEF_ENTRY_RELIEF        "sunken"
  146. #define DEF_ENTRY_SCROLL_COMMAND    ""
  147. #define DEF_ENTRY_SELECT_COLOR        SELECT_BG
  148. #define DEF_ENTRY_SELECT_MONO        BLACK
  149. #define DEF_ENTRY_SELECT_BD_COLOR    "1"
  150. #define DEF_ENTRY_SELECT_BD_MONO    "0"
  151. #define DEF_ENTRY_SELECT_FG_COLOR    BLACK
  152. #define DEF_ENTRY_SELECT_FG_MONO    WHITE
  153. #define DEF_ENTRY_SHOW            (char *) NULL
  154. #define DEF_ENTRY_STATE            "normal"
  155. #define DEF_ENTRY_TAKE_FOCUS        (char *) NULL
  156. #define DEF_ENTRY_TEXT_VARIABLE        ""
  157. #define DEF_ENTRY_WIDTH            "20"
  158.  
  159. /*
  160.  * Defaults for frames:
  161.  */
  162.  
  163. #define DEF_FRAME_BG_COLOR        NORMAL_BG
  164. #define DEF_FRAME_BG_MONO        WHITE
  165. #define DEF_FRAME_BORDER_WIDTH        "0"
  166. #define DEF_FRAME_CLASS            "Frame"
  167. #define DEF_FRAME_COLORMAP        ""
  168. #define DEF_FRAME_CURSOR        ""
  169. #define DEF_FRAME_HEIGHT        "0"
  170. #define DEF_FRAME_HIGHLIGHT_BG        NORMAL_BG
  171. #define DEF_FRAME_HIGHLIGHT        BLACK
  172. #define DEF_FRAME_HIGHLIGHT_WIDTH    "0"
  173. #define DEF_FRAME_RELIEF        "flat"
  174. #define DEF_FRAME_TAKE_FOCUS        "0"
  175. #define DEF_FRAME_VISUAL        ""
  176. #define DEF_FRAME_WIDTH            "0"
  177.  
  178. /*
  179.  * Defaults for listboxes:
  180.  */
  181.  
  182. #define DEF_LISTBOX_BG_COLOR        NORMAL_BG
  183. #define DEF_LISTBOX_BG_MONO        WHITE
  184. #define DEF_LISTBOX_BORDER_WIDTH    "2"
  185. #define DEF_LISTBOX_CURSOR        ""
  186. #define DEF_LISTBOX_EXPORT_SELECTION    "1"
  187. #define DEF_LISTBOX_FONT        "-Adobe-Helvetica-Bold-R-Normal--*-120-*-*-*-*-*-*"
  188. #define DEF_LISTBOX_FG            BLACK
  189. #define DEF_LISTBOX_HEIGHT        "10"
  190. #define DEF_LISTBOX_HIGHLIGHT_BG    NORMAL_BG
  191. #define DEF_LISTBOX_HIGHLIGHT        BLACK
  192. #define DEF_LISTBOX_HIGHLIGHT_WIDTH    "2"
  193. #define DEF_LISTBOX_RELIEF        "sunken"
  194. #define DEF_LISTBOX_SCROLL_COMMAND    ""
  195. #define DEF_LISTBOX_SELECT_COLOR    SELECT_BG
  196. #define DEF_LISTBOX_SELECT_MONO        BLACK
  197. #define DEF_LISTBOX_SELECT_BD        "1"
  198. #define DEF_LISTBOX_SELECT_FG_COLOR    BLACK
  199. #define DEF_LISTBOX_SELECT_FG_MONO    WHITE
  200. #define DEF_LISTBOX_SELECT_MODE        "browse"
  201. #define DEF_LISTBOX_SET_GRID        "0"
  202. #define DEF_LISTBOX_TAKE_FOCUS        (char *) NULL
  203. #define DEF_LISTBOX_WIDTH        "20"
  204.  
  205. /*
  206.  * Defaults for individual entries of menus:
  207.  */
  208.  
  209. #define DEF_MENU_ENTRY_ACTIVE_BG    (char *) NULL
  210. #define DEF_MENU_ENTRY_ACTIVE_FG    (char *) NULL
  211. #define DEF_MENU_ENTRY_ACCELERATOR    (char *) NULL
  212. #define DEF_MENU_ENTRY_BG        (char *) NULL
  213. #define DEF_MENU_ENTRY_BITMAP        None
  214. #define DEF_MENU_ENTRY_COMMAND        (char *) NULL
  215. #define DEF_MENU_ENTRY_FG        (char *) NULL
  216. #define DEF_MENU_ENTRY_FONT        (char *) NULL
  217. #define DEF_MENU_ENTRY_IMAGE        (char *) NULL
  218. #define DEF_MENU_ENTRY_INDICATOR    "1"
  219. #define DEF_MENU_ENTRY_LABEL        (char *) NULL
  220. #define DEF_MENU_ENTRY_MENU        (char *) NULL
  221. #define DEF_MENU_ENTRY_OFF_VALUE    "0"
  222. #define DEF_MENU_ENTRY_ON_VALUE        "1"
  223. #define DEF_MENU_ENTRY_SELECT_IMAGE    (char *) NULL
  224. #define DEF_MENU_ENTRY_STATE        "normal"
  225. #define DEF_MENU_ENTRY_VALUE        (char *) NULL
  226. #define DEF_MENU_ENTRY_CHECK_VARIABLE    (char *) NULL
  227. #define DEF_MENU_ENTRY_RADIO_VARIABLE    "selectedButton"
  228. #define DEF_MENU_ENTRY_SELECT    (char *) NULL
  229. #define DEF_MENU_ENTRY_UNDERLINE    "-1"
  230.  
  231. /*
  232.  * Defaults for menus overall:
  233.  */
  234.  
  235. #define DEF_MENU_ACTIVE_BG_COLOR    ACTIVE_BG
  236. #define DEF_MENU_ACTIVE_BG_MONO        BLACK
  237. #define DEF_MENU_ACTIVE_BORDER_WIDTH    "2"
  238. #define DEF_MENU_ACTIVE_FG_COLOR    BLACK
  239. #define DEF_MENU_ACTIVE_FG_MONO        WHITE
  240. #define DEF_MENU_BG_COLOR        NORMAL_BG
  241. #define DEF_MENU_BG_MONO        WHITE
  242. #define DEF_MENU_BORDER_WIDTH        "2"
  243. #define DEF_MENU_CURSOR            "arrow"
  244. #define DEF_MENU_DISABLED_FG_COLOR    DISABLED
  245. #define DEF_MENU_DISABLED_FG_MONO    ""
  246. #define DEF_MENU_FONT            "-Adobe-Helvetica-Bold-R-Normal--*-120-*-*-*-*-*-*"
  247. #define DEF_MENU_FG            BLACK
  248. #define DEF_MENU_POST_COMMAND        ""
  249. #define DEF_MENU_RELIEF            "raised"
  250. #define DEF_MENU_SELECT_COLOR        INDICATOR
  251. #define DEF_MENU_SELECT_MONO        BLACK
  252. #define DEF_MENU_TAKE_FOCUS        "0"
  253. #define DEF_MENU_TEAROFF        "1"
  254.  
  255. /*
  256.  * Defaults for menubuttons:
  257.  */
  258.  
  259. #define DEF_MENUBUTTON_ANCHOR        "center"
  260. #define DEF_MENUBUTTON_ACTIVE_BG_COLOR    ACTIVE_BG
  261. #define DEF_MENUBUTTON_ACTIVE_BG_MONO    BLACK
  262. #define DEF_MENUBUTTON_ACTIVE_FG_COLOR    BLACK
  263. #define DEF_MENUBUTTON_ACTIVE_FG_MONO    WHITE
  264. #define DEF_MENUBUTTON_BG_COLOR        NORMAL_BG
  265. #define DEF_MENUBUTTON_BG_MONO        WHITE
  266. #define DEF_MENUBUTTON_BITMAP        ""
  267. #define DEF_MENUBUTTON_BORDER_WIDTH    "2"
  268. #define DEF_MENUBUTTON_CURSOR        ""
  269. #define DEF_MENUBUTTON_DISABLED_FG_COLOR DISABLED
  270. #define DEF_MENUBUTTON_DISABLED_FG_MONO    ""
  271. #define DEF_MENUBUTTON_FONT        "-Adobe-Helvetica-Bold-R-Normal--*-120-*-*-*-*-*-*"
  272. #define DEF_MENUBUTTON_FG        BLACK
  273. #define DEF_MENUBUTTON_HEIGHT        "0"
  274. #define DEF_MENUBUTTON_HIGHLIGHT_BG    NORMAL_BG
  275. #define DEF_MENUBUTTON_HIGHLIGHT    BLACK
  276. #define DEF_MENUBUTTON_HIGHLIGHT_WIDTH    "0"
  277. #define DEF_MENUBUTTON_IMAGE        (char *) NULL
  278. #define DEF_MENUBUTTON_INDICATOR    "0"
  279. #define DEF_MENUBUTTON_JUSTIFY        "center"
  280. #define DEF_MENUBUTTON_MENU        ""
  281. #define DEF_MENUBUTTON_PADX        "4p"
  282. #define DEF_MENUBUTTON_PADY        "3p"
  283. #define DEF_MENUBUTTON_RELIEF        "flat"
  284. #define DEF_MENUBUTTON_STATE        "normal"
  285. #define DEF_MENUBUTTON_TAKE_FOCUS    "0"
  286. #define DEF_MENUBUTTON_TEXT        ""
  287. #define DEF_MENUBUTTON_TEXT_VARIABLE    ""
  288. #define DEF_MENUBUTTON_UNDERLINE    "-1"
  289. #define DEF_MENUBUTTON_WIDTH        "0"
  290. #define DEF_MENUBUTTON_WRAP_LENGTH    "0"
  291.  
  292. /*
  293.  * Defaults for messages:
  294.  */
  295.  
  296. #define DEF_MESSAGE_ANCHOR        "center"
  297. #define DEF_MESSAGE_ASPECT        "150"
  298. #define DEF_MESSAGE_BG_COLOR        NORMAL_BG
  299. #define DEF_MESSAGE_BG_MONO        WHITE
  300. #define DEF_MESSAGE_BORDER_WIDTH    "2"
  301. #define DEF_MESSAGE_CURSOR        ""
  302. #define DEF_MESSAGE_FG            BLACK
  303. #define DEF_MESSAGE_FONT        "-Adobe-Helvetica-Bold-R-Normal--*-120-*-*-*-*-*-*"
  304. #define DEF_MESSAGE_HIGHLIGHT_BG    NORMAL_BG
  305. #define DEF_MESSAGE_HIGHLIGHT        BLACK
  306. #define DEF_MESSAGE_HIGHLIGHT_WIDTH    "0"
  307. #define DEF_MESSAGE_JUSTIFY        "left"
  308. #define DEF_MESSAGE_PADX        "-1"
  309. #define DEF_MESSAGE_PADY        "-1"
  310. #define DEF_MESSAGE_RELIEF        "flat"
  311. #define DEF_MESSAGE_TAKE_FOCUS        "0"
  312. #define DEF_MESSAGE_TEXT        ""
  313. #define DEF_MESSAGE_TEXT_VARIABLE    ""
  314. #define DEF_MESSAGE_WIDTH        "0"
  315.  
  316. /*
  317.  * Defaults for scales:
  318.  */
  319.  
  320. #define DEF_SCALE_ACTIVE_BG_COLOR    ACTIVE_BG
  321. #define DEF_SCALE_ACTIVE_BG_MONO    BLACK
  322. #define DEF_SCALE_BG_COLOR        NORMAL_BG
  323. #define DEF_SCALE_BG_MONO        WHITE
  324. #define DEF_SCALE_BIG_INCREMENT        "0"
  325. #define DEF_SCALE_BORDER_WIDTH        "2"
  326. #define DEF_SCALE_COMMAND        ""
  327. #define DEF_SCALE_CURSOR        ""
  328. #define DEF_SCALE_DIGITS        "0"
  329. #define DEF_SCALE_FONT            "-Adobe-Helvetica-Bold-R-Normal--*-120-*-*-*-*-*-*"
  330. #define DEF_SCALE_FG_COLOR        BLACK
  331. #define DEF_SCALE_FG_MONO        BLACK
  332. #define DEF_SCALE_FROM            "0"
  333. #define DEF_SCALE_HIGHLIGHT_BG        NORMAL_BG
  334. #define DEF_SCALE_HIGHLIGHT        BLACK
  335. #define DEF_SCALE_HIGHLIGHT_WIDTH    "2"
  336. #define DEF_SCALE_LABEL            ""
  337. #define DEF_SCALE_LENGTH        "100"
  338. #define DEF_SCALE_ORIENT        "vertical"
  339. #define DEF_SCALE_RELIEF        "flat"
  340. #define DEF_SCALE_REPEAT_DELAY    "300"
  341. #define DEF_SCALE_REPEAT_INTERVAL    "100"
  342. #define DEF_SCALE_RESOLUTION        "1"
  343. #define DEF_SCALE_TROUGH_COLOR        TROUGH
  344. #define DEF_SCALE_TROUGH_MONO        WHITE
  345. #define DEF_SCALE_SHOW_VALUE        "1"
  346. #define DEF_SCALE_SLIDER_LENGTH        "30"
  347. #define DEF_SCALE_STATE            "normal"
  348. #define DEF_SCALE_TAKE_FOCUS        (char *) NULL
  349. #define DEF_SCALE_TICK_INTERVAL        "0"
  350. #define DEF_SCALE_TO            "100"
  351. #define DEF_SCALE_VARIABLE        ""
  352. #define DEF_SCALE_WIDTH            "15"
  353.  
  354. /*
  355.  * Defaults for scrollbars:
  356.  */
  357.  
  358. #define DEF_SCROLLBAR_ACTIVE_BG_COLOR    ACTIVE_BG
  359. #define DEF_SCROLLBAR_ACTIVE_BG_MONO    BLACK
  360. #define DEF_SCROLLBAR_ACTIVE_RELIEF    "raised"
  361. #define DEF_SCROLLBAR_BG_COLOR        NORMAL_BG
  362. #define DEF_SCROLLBAR_BG_MONO        WHITE
  363. #define DEF_SCROLLBAR_BORDER_WIDTH    "2"
  364. #define DEF_SCROLLBAR_COMMAND        ""
  365. #define DEF_SCROLLBAR_CURSOR        ""
  366. #define DEF_SCROLLBAR_EL_BORDER_WIDTH    "-1"
  367. #define DEF_SCROLLBAR_HIGHLIGHT_BG    NORMAL_BG
  368. #define DEF_SCROLLBAR_HIGHLIGHT        BLACK
  369. #define DEF_SCROLLBAR_HIGHLIGHT_WIDTH    "2"
  370. #define DEF_SCROLLBAR_JUMP        "0"
  371. #define DEF_SCROLLBAR_ORIENT        "vertical"
  372. #define DEF_SCROLLBAR_RELIEF        "sunken"
  373. #define DEF_SCROLLBAR_REPEAT_DELAY    "300"
  374. #define DEF_SCROLLBAR_REPEAT_INTERVAL    "100"
  375. #define DEF_SCROLLBAR_TAKE_FOCUS    (char *) NULL
  376. #define DEF_SCROLLBAR_TROUGH_COLOR    TROUGH
  377. #define DEF_SCROLLBAR_TROUGH_MONO    WHITE
  378. #define DEF_SCROLLBAR_WIDTH        "15"
  379.  
  380. /*
  381.  * Defaults for texts:
  382.  */
  383.  
  384. #define DEF_TEXT_BG_COLOR        NORMAL_BG
  385. #define DEF_TEXT_BG_MONO        WHITE
  386. #define DEF_TEXT_BORDER_WIDTH        "2"
  387. #define DEF_TEXT_CURSOR            "xterm"
  388. #define DEF_TEXT_FG            BLACK
  389. #define DEF_TEXT_EXPORT_SELECTION    "1"
  390. #define DEF_TEXT_FONT            "-*-Courier-Medium-R-Normal--*-120-*-*-*-*-*-*"
  391. #define DEF_TEXT_HEIGHT            "24"
  392. #define DEF_TEXT_HIGHLIGHT_BG        NORMAL_BG
  393. #define DEF_TEXT_HIGHLIGHT        BLACK
  394. #define DEF_TEXT_HIGHLIGHT_WIDTH    "2"
  395. #define DEF_TEXT_INSERT_BG        BLACK
  396. #define DEF_TEXT_INSERT_BD_COLOR    "0"
  397. #define DEF_TEXT_INSERT_BD_MONO        "0"
  398. #define DEF_TEXT_INSERT_OFF_TIME    "300"
  399. #define DEF_TEXT_INSERT_ON_TIME        "600"
  400. #define DEF_TEXT_INSERT_WIDTH        "2"
  401. #define DEF_TEXT_PADX            "1"
  402. #define DEF_TEXT_PADY            "1"
  403. #define DEF_TEXT_RELIEF            "sunken"
  404. #define DEF_TEXT_SELECT_COLOR        SELECT_BG
  405. #define DEF_TEXT_SELECT_MONO        BLACK
  406. #define DEF_TEXT_SELECT_BD_COLOR    "1"
  407. #define DEF_TEXT_SELECT_BD_MONO        "0"
  408. #define DEF_TEXT_SELECT_FG_COLOR    BLACK
  409. #define DEF_TEXT_SELECT_FG_MONO        WHITE
  410. #define DEF_TEXT_SET_GRID        "0"
  411. #define DEF_TEXT_SPACING1        "0"
  412. #define DEF_TEXT_SPACING2        "0"
  413. #define DEF_TEXT_SPACING3        "0"
  414. #define DEF_TEXT_STATE            "normal"
  415. #define DEF_TEXT_TABS            ""
  416. #define DEF_TEXT_TAKE_FOCUS        (char *) NULL
  417. #define DEF_TEXT_WIDTH            "80"
  418. #define DEF_TEXT_WRAP            "char"
  419. #define DEF_TEXT_XSCROLL_COMMAND    ""
  420. #define DEF_TEXT_YSCROLL_COMMAND    ""
  421.  
  422. /*
  423.  * Defaults for toplevels (most of the defaults for frames also apply
  424.  * to toplevels):
  425.  */
  426.  
  427. #define DEF_TOPLEVEL_CLASS        "Toplevel"
  428. #define DEF_TOPLEVEL_SCREEN        ""
  429.  
  430. #endif /* _DEFAULT */
  431.